Skip to main content
Version: 1.0.2

Request For Payment Cancellation Response

The RequestForPaymentCancellationResponse API enables to repond the respective payment cancellation request from the originator.

Method: POST

{{URL}}/rtp/rpc/TransactionService/RequestForPaymentCancellationResponse

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription

caseId

Mandatory

String

Case ID of inbound Request for Payment cancellation request

Example – "RFPCINCASE202308170000000001"

referenceNumber

Mandatory

String

Reference number of the inbound Request for Payment

Example – "20230823267084131z6WMAe3eBJYfNem"

reasonCode

Mandatory

String

Reason code for cancelling the request

Example – "AC02"

status

Mandatory

String

Response status of request cancellation

Example – "CNCL"

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "FEDNOW"


curl --location '{{URL}}/rtp/rpc/TransactionService/RequestForPaymentCancellationResponse' \
--header 'Content-Type: application/json' \
--data '{"caseId":"RFPCINCASE202308170000000001","referenceNumber":"20230823267084131z6WMAe3eBJYfNem","reasonCode":"AC02","status":"CNCL","processor":"FEDNOW"}'

Request Body (Applicable only for FedNow)


{
"caseId": "RFPCINCASE202308170000000001",
"referenceNumber": "20230823267084131z6WMAe3eBJYfNem",
"reasonCode": "AC02",
"status": "CNCL",
"processor": "FEDNOW"
}

Response: 200

Response Parameters
ParameterDescription

message

String

Notification message for the transaction

Example – "success"

rawMessage

String

Raw response message related to the transaction encoded in Base64

Example – "Base64 Value of Received Response"

response

String

Response received for the given request

Example – "JSON Representation of Received Response"

status

String

Status of the response

Example – "FAILED"

Response Body (Applicable only for FedNow)


{
"message": "success",
"rawMessage": "Base64 Value of Received Response",
"response": "JSON Representation of Received Response",
"status": "FAILED"
}